home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / System / ReqToolsLib / Source / reqtools / rtunlockprefs.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-02  |  904 b   |  60 lines

  1.  
  2. /*
  3.     (C) 1999 AROS - The Amiga Research OS
  4.     $Id: rtunlockprefs.c,v 1.5 2000/12/15 20:43:35 stegerg Exp $
  5.  
  6.     Desc:
  7.     Lang: English
  8. */
  9.  
  10. #include <exec/types.h>
  11. #include <proto/exec.h>
  12. #include <proto/reqtools.h>
  13. #include <proto/intuition.h>
  14. #include <exec/libraries.h>
  15. #include <exec/memory.h>
  16. #include <aros/libcall.h>
  17. #include "reqtools_intern.h"
  18.  
  19. /*****************************************************************************
  20.  
  21.     NAME */
  22.  
  23.     AROS_LH0(VOID, rtUnlockPrefs,
  24.  
  25. /*  SYNOPSIS */
  26.  
  27. /*  LOCATION */
  28.  
  29.     struct ReqToolsBase *, ReqToolsBase, 29, ReqTools)
  30.  
  31. /*  FUNCTION
  32.  
  33.     INPUTS
  34.  
  35.     RESULT
  36.  
  37.     NOTES
  38.  
  39.     EXAMPLE
  40.  
  41.     BUGS
  42.  
  43.     SEE ALSO
  44.  
  45.     rtLockPrefs()
  46.  
  47.     INTERNALS
  48.  
  49.     HISTORY
  50.  
  51. ******************************************************************************/
  52. {
  53.     AROS_LIBFUNC_INIT
  54.  
  55.     RTFuncs_UnlockPrefs(ReqToolsBase);
  56.     
  57.     AROS_LIBFUNC_EXIT
  58.     
  59. } /* rtUnlockPrefs */
  60.